home *** CD-ROM | disk | FTP | other *** search
- /*
- ***********************************************************************
- *
- * Layout of the 'HEXA' resource "Standard PRAM"
- * which is used to store PRAM/extended PRAM settings
- *
- ***********************************************************************
- */
-
- typedef unsigned short ushort;
-
- struct PRAMSettings {
-
- SysParmType PRAM; // PRAM on the clock chip
-
- // Extended PRAM
- union {
- char body [256];
- struct {
- ushort dummy1[52]; // Don't know what's in there, maybe date
- ushort parm1[6]; // various parameters (I think)
- ushort parm2[69]; // The rest of the 256-byte extended PRAM
- ushort dummy2; // Isn't used at all (can't be written!)
- } layout;
- } extended_PRAM;
- };
-
-